Análise Exploratória

Row

Distribuição de Frequencia de Price

Distribuição de Frequencia por Color

Distribuição de Frequencia por Cut

Matriz de Correlações

Row

Relação entre Carat x Price

Boxplot de Price por Cut

Estatística Descritiva

mean sd median trimmed mad min max range skew kurtosis se
carat 0.7979397 0.4740112 0.70 0.7349655 0.474432 0.2 5.01 4.81 1.1165838 1.2562498 0.0020410
cut* 3.9040971 1.1165999 4.00 4.0424314 1.482600 1.0 5.00 4.00 -0.7171406 -0.3981442 0.0048078
color* 3.5941973 1.7011048 4.00 3.5526743 1.482600 1.0 7.00 6.00 0.1893554 -0.8668722 0.0073245
clarity* 4.0510197 1.6471361 4.00 3.9144651 1.482600 1.0 8.00 7.00 0.5514069 -0.3949375 0.0070921
depth 61.7494049 1.4326213 61.80 61.7846079 1.037820 43.0 79.00 36.00 -0.0822894 5.7384473 0.0061684
table 57.4571839 2.2344906 57.00 57.3183514 1.482600 43.0 95.00 52.00 0.7968515 2.8012708 0.0096211
price 3932.7997219 3989.4397381 2401.00 3158.9923526 2475.942000 326.0 18823.00 18497.00 1.6183053 2.1771907 17.1773608
x 5.7311572 1.1217607 5.70 5.6600758 1.378818 0.0 10.74 10.74 0.3786553 -0.6183029 0.0048300
y 5.7345260 1.1421347 5.71 5.6627443 1.363992 0.0 58.90 58.90 2.4340313 91.2024980 0.0049177
z 3.5387338 0.7056988 3.53 3.4948834 0.845082 0.0 31.80 31.80 1.5223379 47.0802865 0.0030385

Estatística

Row

Dataset Diamonds

---
title: "Diamonds"
author: "Stefani Rmalho"
output: 
  flexdashboard::flex_dashboard:
    orientation: rows
    vertical_layout: fill
    social: menu
    theme: cerulean 
    source_code: embed
---

```{r setup, include=FALSE}
library(flexdashboard)
require(gridExtra)
source("diamonds.R")
```

Análise Exploratória {data-icon="fas fa-chart-line"}
===================================== 

Row 
-----------------------------------------------------------------------

### Distribuição de Frequencia de Price

```{r}
p1
```

### Distribuição de Frequencia por Color

```{r}
p5
```

### Distribuição de Frequencia por Cut

```{r}
p6
```

### Matriz de Correlações

```{r}
p2
```

Row 
-----------------------------------------------------------------------

### Relação entre Carat x Price

```{r}
p3
```

### Boxplot de Price por Cut

```{r}
p4
```

### Estatística Descritiva {.no-mobile}

```{r, fig.width=12.15}
p7
```


Estatística {data-icon="fa-table"}
=====================================  

Row 
-------------------------------------
### Dataset Diamonds {.no-mobile}


```{r}
tabela
```